Socket
Socket
Sign inDemoInstall

thread-stream

Package Overview
Dependencies
Maintainers
4
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

thread-stream

A streaming way to send data to a Node.js Worker Thread


Version published
Weekly downloads
6.2M
decreased by-2.84%
Maintainers
4
Weekly downloads
 
Created

What is thread-stream?

The thread-stream npm package is designed to facilitate the creation of writable streams that operate within worker threads in Node.js. This allows for offloading CPU-intensive tasks or I/O-bound tasks to separate threads, improving the performance and responsiveness of Node.js applications.

What are thread-stream's main functionalities?

Creating a basic thread stream

This code demonstrates how to create a basic thread stream using the thread-stream package. It involves specifying a worker file and optional worker data. The stream created can be used like any other writable stream in Node.js.

const ThreadStream = require('thread-stream');
const stream = new ThreadStream({
  filename: path.join(__dirname, 'worker.js'),
  workerData: { exampleData: 'data' },
  sync: false
});
stream.write('Hello, world!');
stream.end();

Handling stream events

This example shows how to handle data and end events from a thread stream. It allows processing of data received from the worker thread and handling the end of the stream.

stream.on('data', (data) => {
  console.log('Data from stream:', data);
});
stream.on('end', () => {
  console.log('Stream ended.');
});

Other packages similar to thread-stream

Keywords

FAQs

Package last updated on 01 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc